home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d12 / tcoop.arc / TCOOP2.ARC / TWSOUNIT.H < prev    next >
Encoding:
C/C++ Source or Header  |  1991-10-26  |  370 b   |  20 lines

  1. // twsounit.h: Text window object (Twso) Class
  2.  
  3. #ifndef H_TWSOUNIT
  4. #define H_TWSOUNIT
  5.  
  6. #include "isounit.h"
  7. #include "tfsounit.h"
  8.  
  9. class Wso : public Iso {
  10. public:
  11.   Wso(int Ba, int Fa, ColorPak &Cp);
  12.   virtual void MoveLoop(MsgPkt &M); 
  13.   virtual void StretchLoop(MsgPkt &M); 
  14.   virtual void Prompt(void); 
  15.   virtual void UnPrompt(void);
  16. };
  17.  
  18. #endif
  19.  
  20.